home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.amitavalife < 3)
- {
- _visible = true;
- }
- if(this.hitTest(_root.monkey) && _root.amitavalife < 3)
- {
- if(pl == 1)
- {
- _root.amitavalife += 1;
- this.play();
- pl = 0;
- }
- }
- if(this.hitTest(_root.b3) || this.hitTest(_root.b5) || this.hitTest(_root.b6) || this.hitTest(_root.b7))
- {
- _X = _X - 3;
- if(_X <= -500)
- {
- rad = random(3);
- if(rad == 0)
- {
- _X = _root.b6._x;
- _Y = _root.b6._y;
- }
- else if(rad == 1)
- {
- _X = _root.b7._x;
- _Y = _root.b7._y;
- }
- else if(rad == 2)
- {
- _X = _root.b5._x;
- _Y = _root.b5._y;
- }
- else if(rad == 3)
- {
- _X = _root.b3._x;
- _Y = _root.b3._y;
- }
- }
- }
- }
-